VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging Namespace / VintasoftImageGdiExtensions Class / GetAsBitmap Methods / GetAsBitmap(VintasoftImage,EventHandler<ProgressEventArgs>) Method
Синтаксис Example Требования Смотрите также
В этом разделе
    GetAsBitmap(VintasoftImage,EventHandler<ProgressEventArgs>) Метод (VintasoftImageGdiExtensions)
    В этом разделе
    Возвращает объект System.Drawing.Image, связанный с этим объектом VintasoftImage.
    Синтаксис
    'Declaration
    
    <ExtensionAttribute()>
    Public Overloads Shared Function GetAsBitmap( _
    ByVal image
    Изображение.
    As VintasoftImage, _
    ByVal loadingProgress
    Делегирует ход загрузки миниатюр. Может быть установлено значение null (Nothing в Visual Basic).
    As System.EventHandler(Of ProgressEventArgs) _
    ) As System.Drawing.Bitmap
    [Extension()]
    public static System.Drawing.Bitmap GetAsBitmap(
    VintasoftImage image,
    System.EventHandler<ProgressEventArgs> loadingProgress
    )
    [Extension()]
    public: static System.Drawing.Bitmap GetAsBitmap(
    VintasoftImage* image,
    System.EventHandler<ProgressEventArgs*>* loadingProgress
    )
    [Extension()]
    public:
    static System.Drawing.Bitmap GetAsBitmap(
    VintasoftImage^ image,
    System.EventHandler<ProgressEventArgs^>^ loadingProgress
    )

    Parameters

    image
    Изображение.
    loadingProgress
    Делегирует ход загрузки миниатюр. Может быть установлено значение null (Nothing в Visual Basic).

    Return Value

    Объект System.Drawing.Image.
    Пример

    Вот C#/VB.NET код, который демонстрирует, как загрузить изображение с диска, скопировать изображение в буфер обмена, обработать изображение во внешнем редакторе изображений, скопировать изображение обратно из буфера обмена и сохранить обработанное изображение.

    
    ' load image from file
    Using image As New Vintasoft.Imaging.VintasoftImage("c:\original-image.tif")
        ' copy image to clipboard
        System.Windows.Forms.Clipboard.SetImage(Vintasoft.Imaging.VintasoftImageGdiExtensions.GetAsBitmap(image))
    
        ' process image in external image editor and place it back to the clipboard
        ' ...
    
        ' get image from the clipboard
        image.SetImage(Vintasoft.Imaging.VintasoftImageGdiExtensions.Create(System.Windows.Forms.Clipboard.GetImage(), True))
    
        ' save image to the file
        image.Save("c:\processed-image.jpg")
    End Using
    
    
    
    // load image from file
    using (Vintasoft.Imaging.VintasoftImage image =
        new Vintasoft.Imaging.VintasoftImage(@"c:\original-image.tif"))
    {
        // copy image to clipboard
        System.Windows.Forms.Clipboard.SetImage(Vintasoft.Imaging.VintasoftImageGdiExtensions.GetAsBitmap(image));
    
        // process image in external image editor and place it back to the clipboard
        // ...
    
        // get image from the clipboard
        image.SetImage(Vintasoft.Imaging.VintasoftImageGdiExtensions.Create(
            System.Windows.Forms.Clipboard.GetImage(), true));
    
        // save image to the file
        image.Save(@"c:\processed-image.jpg");
    }
    
    

    Требования

    Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    Смотрите также